From b2644aedc9476afe2c7f4074951cd34be1053711 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Fri, 17 Aug 2012 21:29:00 -0400 Subject: [PATCH] Update dxcommon to get its version of exported.sh.in. --- common | 2 +- configure.ac | 1 - exported.sh.in | 44 -------------------------------------------- 3 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 exported.sh.in diff --git a/common b/common index ac12926..2e5b483 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit ac1292661f52ce20168bb942ad207f5b935669ef +Subproject commit 2e5b48374d80959256e535bc1973f032158bde9e diff --git a/configure.ac b/configure.ac index 0ed842c..3be3127 100644 --- a/configure.ac +++ b/configure.ac @@ -55,7 +55,6 @@ AS_CASE([$with_gsl], AM_CONDITIONAL([HAVE_GSL], [test x"$have_gsl" = x"yes"]) AC_CONFIG_FILES([ - exported.sh Makefile ]) AC_OUTPUT diff --git a/exported.sh.in b/exported.sh.in deleted file mode 100644 index 762600a..0000000 --- a/exported.sh.in +++ /dev/null @@ -1,44 +0,0 @@ -#!@SHELL@ -# -# Copyright © 2011 Nick Bowler -# -# Determine the list of exported symbols from archives or (libtool) object -# files. -# -# License WTFPL2: Do What The Fuck You Want To Public License, version 2. -# This is free software: you are free to do what the fuck you want to. -# There is NO WARRANTY, to the extent permitted by law. - -OBJS= - -while test $# -gt 0 -do - case $1 in - /*) arg=$1 ;; - *) arg=./$1 ;; - esac - - if expr "$arg" : '.*\.lo' >/dev/null; then - non_pic_object= - pic_object= - . "$arg" - - dir=`expr "$arg" : '\(.*\)/'` - if test x"$pic_object" != x"none"; then - OBJS="$OBJS $dir/$pic_object" - fi - if test x"$non_pic_object" != x"none"; then - OBJS="$OBJS $dir/$non_pic_object" - fi - else - OBJS="$OBJS $arg" - fi - - shift -done - -set x $OBJS; shift -case $# in -0) : ;; -*) @NM@ $OBJS | @GLOBAL_SYMBOL_PIPE@ | @SED@ 's/^.* //' | sort | uniq ;; -esac -- 2.43.2