aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-libs/fgsl/files/fgsl-0.9.3-sharedlibs.patch')
-rw-r--r--sci-libs/fgsl/files/fgsl-0.9.3-sharedlibs.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/sci-libs/fgsl/files/fgsl-0.9.3-sharedlibs.patch b/sci-libs/fgsl/files/fgsl-0.9.3-sharedlibs.patch
deleted file mode 100644
index 401d750..0000000
--- a/sci-libs/fgsl/files/fgsl-0.9.3-sharedlibs.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- Makefile.orig 2010-05-01 23:35:17.000000000 +0200
-+++ Makefile 2010-08-17 10:15:38.117694977 +0200
-@@ -14,7 +14,23 @@
- @cd tests; $(MAKE) clean; $(MAKE) -j 8 run
-
-
--lib : libfgsl_$(F90).a
-+ifeq ($(STATIC_LIBS),)
-+lib : libfgsl.so.0.0.0
-+else
-+lib : libfgsl_$(F90).a libfgsl.so.0.0.0
-+endif
-+
-+libfgsl.so.0.0.0: fgsl.lo fgsl_utils.lo
-+ $(F90) -shared $(LDFLAGS) -Wl,-soname,libfgsl.so.0 -o $@ $^ $(GSL_LIB)
-+
-+fgsl.lo : fgsl.f90 api/*.finc interface/*.finc
-+ $(F90) -fPIC $(FFLAGS) $(DEBUG) -c fgsl.f90 -o $@
-+
-+%.lo: %.f90
-+ $(F90) -fPIC $(FFLAGS) $(DEBUG) -c -o $@ $^
-+
-+%.lo: %.c
-+ $(CC) -fPIC -c $(GSL_INC) $(CFLAGS) $(CDEBUG) -o $@ $^
-
- libfgsl_$(F90).a : fgsl.o fgsl_utils.o
- ar $(ARFLAGS) libfgsl_$(F90).a $^