diff options
author | David <dbphillipsnz@gmail.com> | 2014-02-22 09:22:29 +1300 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-02-22 09:22:29 +1300 |
commit | 0af51735d7c63529a89cf0a193575b3da3739c36 (patch) | |
tree | b36b9ed4431b22ef214de38b8ea1d881fac5d879 /src/Makefile | |
parent | 87cfe08d529dc32b36055a4e3fcd7b0f2b80f0bb (diff) | |
download | paramano-0af51735d7c63529a89cf0a193575b3da3739c36.tar.xz |
Attempted fix for FPE on 64 bit
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 3f4d6f7..f4895fb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -17,12 +17,12 @@ VERSION = 0.2 trayfreq_SOURCES = getcore.c getcore.h getfreq.c getfreq.h getgov.c getgov.h tray.c tray.h trayfreq.c utilities.c utilities.h widget_manager.c widget_manager.h trayfreq_set_interface.c trayfreq_set_interface.h config_file.c config_file.h defaults.c defaults.h getbat.c getbat.h bat_tray.c bat_tray.h #trayfreq_SOURCES = getcore.c getcore.h getfreq.c getfreq.h getgov.c getgov.h tray.c tray.h trayfreq.c utilities.c utilities.h widget_manager.c widget_manager.h config_file.c config_file.h defaults.c defaults.h getbat.c getbat.h bat_tray.c bat_tray.h -trayfreq_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) -Wall +trayfreq_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) -Wall -mfpmath=387 trayfreq_LDFLAGS = $(GTK_LIBS) $(GLIB_LIBS) -lm -trayfreq_set_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) -Wall +trayfreq_set_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) -Wall -mfpmath=387 trayfreq_set_LDFLAGS = $(GTK_LIBS) $(GLIB_LIBS) -lm trayfreq_set_SOURCES = trayfreq_set.c getfreq.c getcore.c |