summaryrefslogtreecommitdiff
path: root/app-text/crm114/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-text/crm114/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-text/crm114/files')
-rw-r--r--app-text/crm114/files/crm114-20100106-fix-makefile.patch60
1 files changed, 0 insertions, 60 deletions
diff --git a/app-text/crm114/files/crm114-20100106-fix-makefile.patch b/app-text/crm114/files/crm114-20100106-fix-makefile.patch
deleted file mode 100644
index 12ad4052002d..000000000000
--- a/app-text/crm114/files/crm114-20100106-fix-makefile.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-* Remove hardcoded variable
-* Respect user variables
-
---- a/Makefile
-+++ b/Makefile
-@@ -19,10 +19,6 @@
- VER_SUFFIX ?=
-
- #
--# The following forces the compiler to be GCC. If you have trouble
--# with your default compiler, and you want to force GCC, uncomment it.
--CC=gcc
--#
- # What version is this software (PLEASE don't change this just
- # to mess with my brain. - wsy)
- #
-@@ -82,7 +78,7 @@
- #
- # Build our basic CFLAGS chunk
- #
--CFLAGS += -DVERSION='"$(VERSION)"'
-+MY_CPPFLAGS += -DVERSION='"$(VERSION)"'
- #
- # Known Neighbord On, only for debugging
- # CFLAGS += -DKNN_ON
-@@ -104,7 +100,7 @@
- # certain functions to be inline (I added that to force gcc to inline functions
- # under high optimization but not under low so that debugging is possible -
- # that's why DO_INLINES is defined at O3 but not O0 - JB):
--CFLAGS += -O3 -Wall -DDO_INLINES
-+MY_CPPFLAGS += -DDO_INLINES
- # turn this one on for no optimization, but debugging
- #CFLAGS += -g -O0 -Wall
- #
-@@ -119,7 +115,6 @@
- # BSD users - do NOT use -static-libgcc!!!
- # Also note that this keeps valgrind from running correctly so comment
- # it out for debugging.
--LDFLAGS += -static -static-libgcc
- # use this one if you want program profiling.
- #LDFLAGS += -static -static-libgcc -pg
- #LDFLAGS += -pg
-@@ -306,7 +301,7 @@
- # of with your mods built in.
-
- crm114: $(OFILES)
-- $(CC) $(LDFLAGS) $(LIBS) $(OFILES) \
-+ $(CC) $(CFLAGS) $(LDFLAGS) $(LIBS) $(OFILES) \
- -ltre -lm \
- -o crm114
- #
-@@ -315,7 +310,7 @@
-
- *.o: $(HFILES)
- .c.o:
-- $(CC) $(CFLAGS) -c $*.c
-+ $(CC) $(CFLAGS) $(MY_CPPFLAGS) $(CPPFLAGS) -c $*.c
-
- cssutil: cssutil.o crm_css_maintenance.o crm_util_errorhandlers.o crm_str_funcs.o $(HFILES)
- $(CC) $(CFLAGS) $(LDFLAGS) cssutil.o \