Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # File: make_gnv_curl_install.sh
 | |
| #
 | |
| # $Id$
 | |
| #
 | |
| # Set up and run the make script for Curl.
 | |
| #
 | |
| # This makes the library, the curl binary and attempts an install.
 | |
| # A search list should be set up for GNU (GNV$GNU).
 | |
| #
 | |
| # Copyright 2009, John Malmberg
 | |
| #
 | |
| # Permission to use, copy, modify, and/or distribute this software for any
 | |
| # purpose with or without fee is hereby granted, provided that the above
 | |
| # copyright notice and this permission notice appear in all copies.
 | |
| #
 | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 | |
| # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 | |
| # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 | |
| # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | |
| # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 | |
| # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
 | |
| # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 | |
| #
 | |
| # 06-Jun-2009	J. Malmberg
 | |
| #==========================================================================
 | |
| #
 | |
| #
 | |
| # Needed VMS build setups for GNV.
 | |
| export GNV_OPT_DIR=.
 | |
| export GNV_CC_QUALIFIERS=/DEBUG/OPTIMIZE/STANDARD=RELAXED\
 | |
| /float=ieee_float/ieee_mode=denorm_results
 | |
| export GNV_CXX_QUALIFIERS=/DEBUG/OPTIMIZE/float=ieee/ieee_mode=denorm_results
 | |
| export GNV_CC_NO_INC_PRIMARY=1
 | |
| #
 | |
| #
 | |
| # POSIX exit mode is needed for Unix shells.
 | |
| export GNV_CC_MAIN_POSIX_EXIT=1
 | |
| make
 | |
| cd ../..
 | |
| # adjust the libcurl.pc file, GNV currently ignores the Lib: line.
 | |
| # but is noisy about it, so we just remove it.
 | |
| sed -e 's/^Libs:/#Libs:/g' libcurl.pc > libcurl.pc_new
 | |
| rm libcurl.pc
 | |
| mv libcurl.pc_new libcurl.pc
 | |
| make install
 |