]> git.draconx.ca Git - cdecl99.git/commitdiff
Update dxcommon to get its version of exported.sh.in.
authorNick Bowler <nbowler@draconx.ca>
Sat, 18 Aug 2012 01:29:00 +0000 (21:29 -0400)
committerNick Bowler <nbowler@draconx.ca>
Sat, 18 Aug 2012 01:29:00 +0000 (21:29 -0400)
common
configure.ac
exported.sh.in [deleted file]

diff --git a/common b/common
index ac1292661f52ce20168bb942ad207f5b935669ef..2e5b48374d80959256e535bc1973f032158bde9e 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit ac1292661f52ce20168bb942ad207f5b935669ef
+Subproject commit 2e5b48374d80959256e535bc1973f032158bde9e
index 0ed842c366bb48bc66d143b6ef418a7ad8246873..3be31270ae2ccd41e0f60d1e12d020116ab57696 100644 (file)
@@ -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 (file)
index 762600a..0000000
+++ /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