diff options
Diffstat (limited to 'math/abs/files')
-rw-r--r-- | math/abs/files/patch-aa | 19 | ||||
-rw-r--r-- | math/abs/files/patch-ab | 11 | ||||
-rw-r--r-- | math/abs/files/patch-ac | 14 |
3 files changed, 44 insertions, 0 deletions
diff --git a/math/abs/files/patch-aa b/math/abs/files/patch-aa new file mode 100644 index 000000000000..b36b27ad7800 --- /dev/null +++ b/math/abs/files/patch-aa @@ -0,0 +1,19 @@ +--- Makefile.orig Mon Jan 25 00:36:03 1999 ++++ Makefile Mon Jan 25 00:37:42 1999 +@@ -4,6 +4,7 @@ + + MAKE = make + ++CFLAGS+=-I$(X11BASE)/include + LIBS = -L /lib/X11 -L /usr/X11R6/lib -lXaw -lX11 -lm -lXt -lXmu -lXext + + SRCS = \ +@@ -105,7 +106,7 @@ + $(MAKE) all); \ + fi \ + done +- cc -o abs ./TextField-1.0/*.o $(OBJS) ./Xpm/libxpm.a $(LIBS) ++ $(CC) $(CFLAGS) -o abs ./TextField-1.0/*.o $(OBJS) ./Xpm/libxpm.a $(LIBS) + + clean:: + rm -f *.o */*.o */*.a diff --git a/math/abs/files/patch-ab b/math/abs/files/patch-ab new file mode 100644 index 000000000000..e90d9b44f968 --- /dev/null +++ b/math/abs/files/patch-ab @@ -0,0 +1,11 @@ +--- Xpm/Makefile.orig Mon Jan 25 00:38:13 1999 ++++ Xpm/Makefile Mon Jan 25 00:38:43 1999 +@@ -16,7 +16,7 @@ + ################################# + ### C Compiler + CC = cc +-CFLAGS = -O ++CFLAGS += -O -I$(X11BASE)/include + + ### C++ Compiler + CCC = xlC diff --git a/math/abs/files/patch-ac b/math/abs/files/patch-ac new file mode 100644 index 000000000000..ca7393bb33a8 --- /dev/null +++ b/math/abs/files/patch-ac @@ -0,0 +1,14 @@ +--- TextField-1.0/Makefile.orig Mon Jan 25 00:39:18 1999 ++++ TextField-1.0/Makefile Mon Jan 25 00:40:01 1999 +@@ -1,9 +1,9 @@ + # Makefile for widget demo programs + + ATHENALIBS = -lXaw -lXmu -lXt -lX11 -lm +-CFLAGS = $(DEFINES) $(CDEBUGFLAGS) ++CFLAGS += $(DEFINES) $(CDEBUGFLAGS) + CDEBUGFLAGS = +-DEFINES = ++DEFINES = -I$(X11BASE)/include + RM = rm -f + + WIDGET = TextField |