2016-07-08 13:09:17 +00:00
2008-01-17 02:32:21 +00:00
# This file must be sourced inside csh using: source
1998-04-06 03:01:59 +00:00
#
2002-05-02 15:07:49 +00:00
# @configure_input@
1998-04-06 03:01:59 +00:00
#
# Shell initialization for the GNUstep environment.
#
2008-01-14 11:17:34 +00:00
# Copyright (C) 1998-2008 Free Software Foundation, Inc.
1998-04-06 03:01:59 +00:00
#
# Author: Scott Christley <scottc@net-community.com>
2002-02-24 15:45:14 +00:00
# Author: Adam Fedor <fedor@gnu.org>
# Author: Richard Frith-Macdonald <rfm@gnu.org>
2008-01-14 11:17:34 +00:00
# Author: Nicola Pero <nicola.pero@meta-innovation.com>
1998-04-06 03:01:59 +00:00
#
# This file is part of the GNUstep Makefile Package.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
2007-10-30 14:18:41 +00:00
# as published by the Free Software Foundation; either version 3
1998-04-06 03:01:59 +00:00
# of the License, or (at your option) any later version.
2016-07-08 13:09:17 +00:00
#
1998-04-06 03:01:59 +00:00
# You should have received a copy of the GNU General Public
2007-07-13 10:11:48 +00:00
# License along with this library; see the file COPYING.
1998-04-06 03:01:59 +00:00
# If not, write to the Free Software Foundation,
2005-05-22 03:20:14 +00:00
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1998-04-06 03:01:59 +00:00
#
2008-01-14 15:22:14 +00:00
# When this is set to 'yes', strict gnustep-make v2 compatibility mode
# is turned on.
set GNUSTEP_MAKE_STRICT_V2_MODE = @GNUSTEP_MAKE_STRICT_V2_MODE@
2005-10-13 02:42:10 +00:00
#
# Read our configuration files
#
# Determine the location of the system configuration file
if ( ! ${ ?GNUSTEP_CONFIG_FILE } ) then
2006-07-06 12:19:32 +00:00
setenv GNUSTEP_CONFIG_FILE "@GNUSTEP_CONFIG_FILE@"
2008-01-14 11:17:34 +00:00
else
set GNUSTEP_KEEP_CONFIG_FILE = yes
2005-10-13 02:42:10 +00:00
endif
# Determine the location of the user configuration file
if ( ! ${ ?GNUSTEP_USER_CONFIG_FILE } ) then
2006-07-06 12:19:32 +00:00
setenv GNUSTEP_USER_CONFIG_FILE "@GNUSTEP_USER_CONFIG_FILE@"
2008-01-14 11:17:34 +00:00
else
set GNUSTEP_KEEP_USER_CONFIG_FILE = yes
2005-10-13 02:42:10 +00:00
endif
# Read the system configuration file
if ( -e "${GNUSTEP_CONFIG_FILE}" ) then
#
# Convert the config file from sh syntax to csh syntax, and execute it.
#
# We want to convert every line of the type ^xxx=yyy$ into setenv xxx yyy;
# and ignore any other line.
#
# This sed expression will first delete all lines that don't match
# the pattern ^[^#=][^#=]*=.*$ -- which means "start of line (^),
# followed by a character that is not # and not = ([^#=]), followed
# by 0 or more characters that are not # and not = ([^#=]*),
# followed by a = (=), followed by some characters until end of the
# line (.*$). It will then replace each occurrence of the same
# pattern (where the first and second relevant parts are now tagged
# -- that's what the additional \(...\) do) with 'setenv \1 \2'.
#
# The result of all this is ... something that we want to execute!
# We use eval to execute the results of `...`.
#
# Please note that ! must always be escaped in csh, which is why we
# write \\!
#
# Also note that we add a ';' at the end of each setenv command so
# that we can pipe all the commands through a single eval.
#
eval ` sed -e '/^[^#=][^#=]*=.*$/\\!d' -e 's/^\([^#=][^#=]*\)=\(.*\)$/setenv \1 \2;/' "${GNUSTEP_CONFIG_FILE}" `
endif
# FIXME: determining GNUSTEP_HOME
set GNUSTEP_HOME = ~
# Read the user configuration file ... unless it is disabled (ie, set
# to an empty string)
if ( ${ ?GNUSTEP_USER_CONFIG_FILE } ) then
switch ( "${GNUSTEP_USER_CONFIG_FILE}" )
case /*: # An absolute path
if ( -e "${GNUSTEP_USER_CONFIG_FILE}" ) then
# See above for an explanation of the sed expression
2008-01-14 15:22:14 +00:00
eval ` sed -e '/^[^#=][^#=]*=.*$/\\!d' -e 's/^\([^#=][^#=]*\)=\(.*\)$/setenv \1 \2;/' "${GNUSTEP_USER_CONFIG_FILE}" `
2005-10-13 02:42:10 +00:00
endif
breaksw
default : # Something else
if ( -e "${GNUSTEP_HOME}/${GNUSTEP_USER_CONFIG_FILE}" ) then
eval ` sed -e '/^[^#=][^#=]*=.*$/\\!d' -e 's/^\([^#=][^#=]*\)=\(.*\)$/setenv \1 \2;/' "${GNUSTEP_HOME}/${GNUSTEP_USER_CONFIG_FILE}" `
endif
breaksw
endsw
endif
# Now, set any essential variable (that is not already set) to the
# built-in values.
2008-01-14 15:22:14 +00:00
if ( "${GNUSTEP_MAKE_STRICT_V2_MODE}" == "yes" ) then
unsetenv GNUSTEP_SYSTEM_ROOT
unsetenv GNUSTEP_LOCAL_ROOT
unsetenv GNUSTEP_NETWORK_ROOT
unsetenv GNUSTEP_FLATTENED
else
if ( ! ${ ?GNUSTEP_SYSTEM_ROOT } ) then
setenv GNUSTEP_SYSTEM_ROOT "@GNUSTEP_SYSTEM_ROOT@"
endif
2005-10-13 02:42:10 +00:00
2008-01-14 15:22:14 +00:00
if ( ! ${ ?GNUSTEP_LOCAL_ROOT } ) then
setenv GNUSTEP_LOCAL_ROOT "@GNUSTEP_LOCAL_ROOT@"
endif
2005-10-13 02:42:10 +00:00
2008-01-14 15:22:14 +00:00
if ( ! ${ ?GNUSTEP_NETWORK_ROOT } ) then
setenv GNUSTEP_NETWORK_ROOT "@GNUSTEP_NETWORK_ROOT@"
endif
2005-10-13 02:42:10 +00:00
2008-01-14 15:22:14 +00:00
# GNUSTEP_FLATTENED is obsolete, please use GNUSTEP_IS_FLATTENED
# instead
setenv GNUSTEP_FLATTENED "@GNUSTEP_FLATTENED@"
endif
2005-10-13 02:42:10 +00:00
2006-10-02 15:54:56 +00:00
setenv GNUSTEP_IS_FLATTENED "@GNUSTEP_IS_FLATTENED@"
1999-04-23 02:54:45 +00:00
if ( ! ${ ?LIBRARY_COMBO } ) then
2003-04-22 13:40:14 +00:00
setenv LIBRARY_COMBO "@ac_cv_library_combo@"
1999-04-23 02:54:45 +00:00
endif
1998-04-06 03:01:59 +00:00
2016-07-08 13:09:17 +00:00
setenv GNUSTEP_HAS_PKGCONFIG "@GNUSTEP_HAS_PKGCONFIG@"
2005-10-13 02:42:10 +00:00
if ( ! ${ ?GNUSTEP_MAKEFILES } ) then
2007-02-14 03:40:30 +00:00
setenv GNUSTEP_MAKEFILES "@GNUSTEP_MAKEFILES@"
2005-10-13 02:42:10 +00:00
endif
2008-01-14 15:22:14 +00:00
if ( "${GNUSTEP_MAKE_STRICT_V2_MODE}" == "yes" ) then
unsetenv GNUSTEP_USER_DIR
unsetenv GNUSTEP_USER_ROOT
else
if ( ! ${ ?GNUSTEP_USER_DIR } ) then
setenv GNUSTEP_USER_DIR "@GNUSTEP_USER_DIR@"
endif
1998-04-06 03:01:59 +00:00
2008-01-14 15:22:14 +00:00
#
# Set GNUSTEP_USER_ROOT which is the variable used in practice
#
switch ( "${GNUSTEP_USER_DIR}" )
case /*: # An absolute path
setenv GNUSTEP_USER_ROOT "${GNUSTEP_USER_DIR}"
breaksw
default : # Something else
setenv GNUSTEP_USER_ROOT "${GNUSTEP_HOME}/${GNUSTEP_USER_DIR}"
breaksw
endsw
2005-10-13 02:42:10 +00:00
2008-01-14 15:22:14 +00:00
unsetenv GNUSTEP_USER_DIR
endif
2008-01-14 10:41:13 +00:00
2003-01-26 04:01:10 +00:00
if ( "@GNUSTEP_MULTI_PLATFORM@" == "" ) then
2003-04-22 13:40:14 +00:00
setenv GNUSTEP_HOST "@target@"
setenv GNUSTEP_HOST_CPU "@clean_target_cpu@"
setenv GNUSTEP_HOST_VENDOR "@clean_target_vendor@"
setenv GNUSTEP_HOST_OS "@clean_target_os@"
2003-01-26 04:01:10 +00:00
endif
1998-04-06 03:01:59 +00:00
#
# Determine the host information
#
1999-09-09 02:56:20 +00:00
if ( ! ${ ?GNUSTEP_HOST } ) then
2000-02-19 00:40:47 +00:00
pushd /tmp > /dev/null
2000-02-21 22:01:08 +00:00
setenv GNUSTEP_HOST ` ${ GNUSTEP_MAKEFILES } /config.guess`
setenv GNUSTEP_HOST ` ${ GNUSTEP_MAKEFILES } /config.sub ${ GNUSTEP_HOST } `
2000-02-19 00:40:47 +00:00
popd > /dev/null
1999-09-09 02:56:20 +00:00
endif
1998-04-06 03:01:59 +00:00
2001-03-15 01:03:24 +00:00
if ( ! ${ ?GNUSTEP_HOST_CPU } ) then
setenv GNUSTEP_HOST_CPU ` ${ GNUSTEP_MAKEFILES } /cpu.sh ${ GNUSTEP_HOST } `
setenv GNUSTEP_HOST_CPU ` ${ GNUSTEP_MAKEFILES } /clean_cpu.sh ${ GNUSTEP_HOST_CPU } `
endif
if ( ! ${ ?GNUSTEP_HOST_VENDOR } ) then
setenv GNUSTEP_HOST_VENDOR ` ${ GNUSTEP_MAKEFILES } /vendor.sh ${ GNUSTEP_HOST } `
setenv GNUSTEP_HOST_VENDOR ` ${ GNUSTEP_MAKEFILES } /clean_vendor.sh ${ GNUSTEP_HOST_VENDOR } `
endif
if ( ! ${ ?GNUSTEP_HOST_OS } ) then
setenv GNUSTEP_HOST_OS ` ${ GNUSTEP_MAKEFILES } /os.sh ${ GNUSTEP_HOST } `
setenv GNUSTEP_HOST_OS ` ${ GNUSTEP_MAKEFILES } /clean_os.sh ${ GNUSTEP_HOST_OS } `
endif
1998-04-06 03:01:59 +00:00
2007-02-14 02:38:15 +00:00
# Now load in all the remaining paths
source "${GNUSTEP_MAKEFILES}/filesystem.csh"
# No longer needed
unset GNUSTEP_HOME
2007-02-14 05:47:05 +00:00
# Determine if the paths look like Windows paths that need fixing
set fixup_paths = no
if ( ` echo $GNUSTEP_MAKEFILES | sed 's|^[a-zA-Z]:/.*$||' ` == "" ) then
set fixup_paths = yes
endif
1998-04-06 03:01:59 +00:00
#
# Add the GNUstep tools directories to the path
#
2008-01-14 15:22:14 +00:00
if ( "${GNUSTEP_MAKE_STRICT_V2_MODE}" == "no" ) then
if ( ! ${ ?GNUSTEP_PATHLIST } ) then
setenv GNUSTEP_PATHLIST ` $GNUSTEP_MAKEFILES /print_unique_pathlist.sh "$GNUSTEP_USER_ROOT" "$GNUSTEP_LOCAL_ROOT" "$GNUSTEP_NETWORK_ROOT" "$GNUSTEP_SYSTEM_ROOT" $fixup_paths `
endif
2000-06-13 15:14:23 +00:00
endif
1999-09-20 08:20:57 +00:00
2007-02-14 05:47:05 +00:00
set GNUSTEP_TOOLS_PATHLIST = ` $GNUSTEP_MAKEFILES /print_unique_pathlist.sh "$GNUSTEP_USER_TOOLS" "$GNUSTEP_LOCAL_TOOLS" "$GNUSTEP_NETWORK_TOOLS" "$GNUSTEP_SYSTEM_TOOLS" $fixup_paths `
2007-02-16 20:14:44 +00:00
foreach dir ( "${GNUSTEP_SYSTEM_ADMIN_TOOLS}" "${GNUSTEP_NETWORK_ADMIN_TOOLS}" "${GNUSTEP_LOCAL_ADMIN_TOOLS}" "${GNUSTEP_USER_ADMIN_TOOLS}" )
if ( -d "${dir}" && -w "${dir}" ) then
2008-12-05 09:49:10 +00:00
if ( { ( echo ":${GNUSTEP_TOOLS_PATHLIST}:" \
|grep -v ":${dir}:" >/dev/null) } ) then
2007-02-16 20:14:44 +00:00
setenv GNUSTEP_TOOLS_PATHLIST "${dir}:${GNUSTEP_TOOLS_PATHLIST}"
endif
endif
end
2007-03-08 14:17:58 +00:00
foreach dir ( ` /bin/sh -c 'IFS=:; for i in ' "${GNUSTEP_TOOLS_PATHLIST}" '; do echo $i; done' ` )
2008-10-21 14:45:48 +00:00
set path_fragment = "${dir}"
2006-10-02 15:54:56 +00:00
if ( "${GNUSTEP_IS_FLATTENED}" == "no" ) then
2016-06-25 07:12:41 +00:00
set path_fragment = "${dir}:${dir}/${GNUSTEP_HOST_CPU}-${GNUSTEP_HOST_OS}/${LIBRARY_COMBO}:${dir}/${GNUSTEP_HOST_CPU}-${GNUSTEP_HOST_OS}"
2000-12-05 16:11:55 +00:00
endif
2002-01-11 12:33:07 +00:00
2008-10-21 14:45:48 +00:00
if ( ! ${ ?PATH } ) then
setenv PATH "${path_fragment}"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${PATH}:" \
2008-12-08 10:54:51 +00:00
|grep -v ":${path_fragment}:" >/dev/null) } ) then
2008-10-21 14:45:48 +00:00
setenv PATH "${path_fragment}:${PATH}"
endif
end
unset path_fragment dir
2007-02-14 05:47:05 +00:00
unset GNUSTEP_TOOLS_PATHLIST
2002-01-11 12:33:07 +00:00
2008-10-21 14:45:48 +00:00
set GNUSTEP_LIBRARIES_PATHLIST = ` $GNUSTEP_MAKEFILES /print_unique_pathlist.sh "$GNUSTEP_USER_LIBRARIES" "$GNUSTEP_LOCAL_LIBRARIES" "$GNUSTEP_NETWORK_LIBRARIES" "$GNUSTEP_SYSTEM_LIBRARIES" $fixup_paths `
foreach dir ( ` /bin/sh -c 'IFS=:; for i in ' "${GNUSTEP_LIBRARIES_PATHLIST}" '; do echo $i; done' ` )
if ( "$GNUSTEP_IS_FLATTENED" == "yes" ) then
set path_fragment = "$dir"
else
2016-06-25 07:12:41 +00:00
set path_fragment = "$dir/$GNUSTEP_HOST_CPU-$GNUSTEP_HOST_OS/$LIBRARY_COMBO:$dir/$GNUSTEP_HOST_CPU-$GNUSTEP_HOST_OS"
2008-10-21 14:45:48 +00:00
endif
2001-05-05 10:44:11 +00:00
2008-10-21 14:45:48 +00:00
switch ( "${GNUSTEP_HOST_OS}" )
2008-11-05 23:20:27 +00:00
case *nextstep4* :
case *darwin* :
2008-10-21 14:45:48 +00:00
if ( $? DYLD_LIBRARY_PATH = = 0 ) then
setenv DYLD_LIBRARY_PATH "${path_fragment}"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${DYLD_LIBRARY_PATH}:" \
|grep -v ":${path_fragment}:" >/dev/null) } ) then
2008-10-21 14:45:48 +00:00
setenv DYLD_LIBRARY_PATH "${path_fragment}:${DYLD_LIBRARY_PATH}"
endif
breaksw
case *hpux* :
if ( $? SHLIB_PATH = = 0 ) then
setenv SHLIB_PATH "${path_fragment}"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${SHLIB_PATH}:" \
|grep -v ":${path_fragment}:" >/dev/null) } ) then
2008-10-21 14:45:48 +00:00
setenv SHLIB_PATH "${path_fragment}:${SHLIB_PATH}"
endif
if ( $? LD_LIBRARY_PATH = = 0 ) then
setenv LD_LIBRARY_PATH "${path_fragment}"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${LD_LIBRARY_PATH}:" \
|grep -v ":${path_fragment}:" >/dev/null) } ) then
2008-10-21 14:45:48 +00:00
setenv LD_LIBRARY_PATH "${path_fragment}:${LD_LIBRARY_PATH}"
endif
breaksw
case * :
if ( $? LD_LIBRARY_PATH = = 0 ) then
setenv LD_LIBRARY_PATH "${path_fragment}"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${LD_LIBRARY_PATH}:" \
|grep -v ":${path_fragment}:" >/dev/null) } ) then
2008-10-21 14:45:48 +00:00
setenv LD_LIBRARY_PATH "${path_fragment}:${LD_LIBRARY_PATH}"
endif
breaksw
endsw
end
unset path_fragment dir
unset GNUSTEP_LIBRARIES_PATHLIST
switch ( "${GNUSTEP_HOST_OS}" )
case *darwin* :
set GNUSTEP_FRAMEWORKS_PATHLIST = ` $GNUSTEP_MAKEFILES /print_unique_pathlist.sh "$GNUSTEP_USER_LIBRARY/Frameworks" "$GNUSTEP_LOCAL_LIBRARY/Frameworks" "$GNUSTEP_NETWORK_LIBRARY/Frameworks" "$GNUSTEP_SYSTEM_LIBRARY/Frameworks" $fixup_paths `
foreach dir ( ` /bin/sh -c 'IFS=:; for i in ' "${GNUSTEP_FRAMEWORKS_PATHLIST}" '; do echo $i; done' ` )
set path_fragment = "$dir"
if ( $? DYLD_FRAMEWORK_PATH = = 0 ) then
setenv DYLD_FRAMEWORK_PATH "${path_fragment}"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${DYLD_FRAMEWORK_PATH}:" \
|grep -v ":${path_fragment}:" >/dev/null) } ) then
2008-10-21 14:45:48 +00:00
setenv DYLD_FRAMEWORK_PATH "${path_fragment}:${DYLD_FRAMEWORK_PATH}"
endif
end
unset dir path_fragment
unset GNUSTEP_FRAMEWORKS_PATHLIST
breaksw
case * :
breaksw
endsw
set GNUSTEP_LIBRARY_PATHLIST = ` $GNUSTEP_MAKEFILES /print_unique_pathlist.sh "$GNUSTEP_USER_LIBRARY" "$GNUSTEP_LOCAL_LIBRARY" "$GNUSTEP_NETWORK_LIBRARY" "$GNUSTEP_SYSTEM_LIBRARY" $fixup_paths `
foreach dir ( ` /bin/sh -c 'IFS=:; for i in ' "${GNUSTEP_LIBRARY_PATHLIST}" '; do echo $i; done' ` )
set path_fragment = "${dir}/Libraries/Java"
if ( ! ${ ?CLASSPATH } ) then
setenv CLASSPATH "${path_fragment}"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${CLASSPATH}:" \
|grep -v ":${path_fragment}:" >/dev/null) } ) then
2011-05-03 07:40:10 +00:00
setenv CLASSPATH "${path_fragment}:${CLASSPATH}"
2008-10-21 14:45:48 +00:00
endif
2001-05-05 10:44:11 +00:00
2008-10-21 14:45:48 +00:00
set path_fragment = "${dir}/Libraries/Guile"
if ( ! ${ ?GUILE_LOAD_PATH } ) then
setenv GUILE_LOAD_PATH "${path_fragment}"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${GUILE_LOAD_PATH}:" \
|grep -v ":${path_fragment}:" >/dev/null) } ) then
2008-10-21 14:45:48 +00:00
setenv GUILE_LOAD_PATH "${path_fragment}:${GUILE_LOAD_PATH}"
endif
2001-05-05 10:44:11 +00:00
2008-10-21 14:45:48 +00:00
end
unset path_fragment dir
2011-03-22 15:27:46 +00:00
unset GNUSTEP_LIBRARY_PATHLIST
2003-04-25 15:16:36 +00:00
2008-10-21 14:45:48 +00:00
set GNUSTEP_INFO_PATHLIST = ` $GNUSTEP_MAKEFILES /print_unique_pathlist.sh "$GNUSTEP_USER_DOC_INFO" "$GNUSTEP_LOCAL_DOC_INFO" "$GNUSTEP_NETWORK_DOC_INFO" "$GNUSTEP_SYSTEM_DOC_INFO" $fixup_paths `
2002-10-05 00:14:59 +00:00
2008-10-21 14:45:48 +00:00
foreach dir ( ` /bin/sh -c 'IFS=:; for i in ' "${GNUSTEP_INFO_PATHLIST}" '; do echo $i; done' ` )
2003-04-25 15:16:36 +00:00
2008-10-21 14:45:48 +00:00
if ( ! ${ ?INFOPATH } ) then
setenv INFOPATH "${dir}:"
2008-12-05 09:49:10 +00:00
else if ( { ( echo ":${INFOPATH}:" \
|grep -v ":${dir}:" >/dev/null) } ) then
2008-10-21 14:45:48 +00:00
setenv INFOPATH "${INFOPATH}:${dir}:"
endif
2007-01-09 11:25:15 +00:00
2008-10-21 14:45:48 +00:00
end
2007-01-09 11:25:15 +00:00
2008-10-21 14:45:48 +00:00
unset dir
2007-01-09 11:25:15 +00:00
2016-07-08 13:09:17 +00:00
if ( "${GNUSTEP_HAS_PKGCONFIG}" == "yes" ) then
set GNUSTEP_PKGCONFIG_FRAGMENT = pkgconfig
set GNUSTEP_PKGCONFIG_PATHLIST = ` $GNUSTEP_MAKEFILES /print_unique_pathlist.sh "$GNUSTEP_USER_LIBRARIES" "$GNUSTEP_LOCAL_LIBRARIES" "$GNUSTEP_NETWORK_LIBRARIES" "$GNUSTEP_SYSTEM_LIBRARIES" $fixup_paths `
foreach dir ( ` /bin/sh -c 'IFS=:; for i in ' "${GNUSTEP_PKGCONFIG_PATHLIST}" '; do echo $i; done' ` )
if ( "$GNUSTEP_IS_FLATTENED" == "yes" ) then
set path_fragment = "$dir/$GNUSTEP_PKGCONFIG_FRAGMENT"
else
set path_fragment = "$dir/$GNUSTEP_HOST_CPU-$GNUSTEP_HOST_OS/$LIBRARY_COMBO/$GNUSTEP_PKGCONFIG_FRAGMENT:$dir/$GNUSTEP_HOST_CPU-$GNUSTEP_HOST_OS/$GNUSTEP_PKGCONFIG_FRAGMENT"
endif
if ( $? PKG_CONFIG_PATH = = 0 ) then
setenv PKG_CONFIG_PATH "${path_fragment}"
else if ( { ( echo ":${PKG_CONFIG_PATH}:" \
|grep -v ":${path_fragment}:" >/dev/null) } ) then
setenv PKG_CONFIG_PATH "${path_fragment}:${PKG_CONFIG_PATH}"
endif
end
unset path_fragment dir
unset GNUSTEP_PKGCONFIG_PATHLIST GNUSTEP_PKGCONFIG_FRAGMENT
endif
2008-01-14 15:22:14 +00:00
if ( "${GNUSTEP_MAKE_STRICT_V2_MODE}" == "yes" ) then
unsetenv GNUSTEP_IS_FLATTENED
unsetenv LIBRARY_COMBO
unsetenv GNUSTEP_HOST
unsetenv GNUSTEP_HOST_CPU
unsetenv GNUSTEP_HOST_VENDOR
unsetenv GNUSTEP_HOST_OS
endif
unset GNUSTEP_MAKE_STRICT_V2_MODE
2008-01-14 11:17:34 +00:00
if ( ! { $? GNUSTEP_KEEP_CONFIG_FILE} ) then
unsetenv GNUSTEP_CONFIG_FILE
endif
unset GNUSTEP_KEEP_CONFIG_FILE
if ( ! ${ ?GNUSTEP_KEEP_USER_CONFIG_FILE } ) then
unsetenv GNUSTEP_USER_CONFIG_FILE
endif
unset GNUSTEP_KEEP_USER_CONFIG_FILE
unsetenv GNUSTEP_USER_DEFAULTS_DIR
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_SYSTEM_APPS
unsetenv GNUSTEP_SYSTEM_ADMIN_APPS
unsetenv GNUSTEP_SYSTEM_WEB_APPS
unsetenv GNUSTEP_SYSTEM_TOOLS
unsetenv GNUSTEP_SYSTEM_ADMIN_TOOLS
2007-02-14 05:47:05 +00:00
unsetenv GNUSTEP_SYSTEM_LIBRARY
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_SYSTEM_HEADERS
unsetenv GNUSTEP_SYSTEM_LIBRARIES
unsetenv GNUSTEP_SYSTEM_DOC
2007-02-26 15:20:05 +00:00
unsetenv GNUSTEP_SYSTEM_DOC_MAN
unsetenv GNUSTEP_SYSTEM_DOC_INFO
2007-02-14 05:47:05 +00:00
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_NETWORK_APPS
unsetenv GNUSTEP_NETWORK_ADMIN_APPS
unsetenv GNUSTEP_NETWORK_WEB_APPS
unsetenv GNUSTEP_NETWORK_TOOLS
2007-02-16 20:14:44 +00:00
unsetenv GNUSTEP_NETWORK_ADMIN_TOOLS
2007-02-14 05:47:05 +00:00
unsetenv GNUSTEP_NETWORK_LIBRARY
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_NETWORK_HEADERS
unsetenv GNUSTEP_NETWORK_LIBRARIES
unsetenv GNUSTEP_NETWORK_DOC
2007-02-26 15:20:05 +00:00
unsetenv GNUSTEP_NETWORK_DOC_MAN
unsetenv GNUSTEP_NETWORK_DOC_INFO
2007-02-14 05:47:05 +00:00
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_LOCAL_APPS
unsetenv GNUSTEP_LOCAL_ADMIN_APPS
unsetenv GNUSTEP_LOCAL_WEB_APPS
unsetenv GNUSTEP_LOCAL_TOOLS
2007-02-16 20:14:44 +00:00
unsetenv GNUSTEP_LOCAL_ADMIN_TOOLS
unsetenv GNUSTEP_LOCAL_LIBRARY
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_LOCAL_HEADERS
unsetenv GNUSTEP_LOCAL_LIBRARIES
unsetenv GNUSTEP_LOCAL_DOC
2007-02-26 15:20:05 +00:00
unsetenv GNUSTEP_LOCAL_DOC_MAN
unsetenv GNUSTEP_LOCAL_DOC_INFO
2007-02-16 20:14:44 +00:00
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_USER_APPS
2007-02-16 20:14:44 +00:00
unsetenv GNUSTEP_USER_ADMIN_APPS
2008-01-14 11:17:34 +00:00
unsetenv GNUSTEP_USER_WEB_APPS
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_USER_TOOLS
unsetenv GNUSTEP_USER_ADMIN_TOOLS
2007-02-14 05:47:05 +00:00
unsetenv GNUSTEP_USER_LIBRARY
2016-07-08 13:09:17 +00:00
unsetenv GNUSTEP_USER_HEADERS
unsetenv GNUSTEP_USER_LIBRARIES
unsetenv GNUSTEP_USER_DOC
2007-02-26 15:20:05 +00:00
unsetenv GNUSTEP_USER_DOC_MAN
unsetenv GNUSTEP_USER_DOC_INFO
2008-01-14 09:22:29 +00:00
unsetenv GNUSTEP_SYSTEM_USERS_DIR
unsetenv GNUSTEP_LOCAL_USERS_DIR
unsetenv GNUSTEP_NETWORK_USERS_DIR