-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
35 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
SHA256 (syncterm-1.1-src.tgz) = 0XfkRMbLlrzuV2B17RcdPYeC1kB4VcTWgOHeqOMyp6Y= | ||
SIZE (syncterm-1.1-src.tgz) = 18270212 | ||
SHA256 (syncterm-1.6-src.tgz) = eeOuQ9OfmKWSJo/0AJQJTaYqpYe1uSXmt0WdZqXRHUk= | ||
SIZE (syncterm-1.6-src.tgz) = 10986287 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
Don't hardcode -fpic, some of our architectures need -fPIC. | ||
Don't hardcode -O2. | ||
Don't hardcode -O3. | ||
|
||
Index: src/build/Common.gmake | ||
--- src/build/Common.gmake.orig | ||
+++ src/build/Common.gmake | ||
@@ -225,7 +225,6 @@ endif | ||
ifeq ($(machine),x86_64) | ||
machine := x64 | ||
@@ -279,7 +279,6 @@ ifeq ($(machine_uname),x86_64) | ||
machine_uname := x64 | ||
endif | ||
-CFLAGS += -fpic | ||
ifeq ($(machine),sparc64) | ||
CFLAGS += -D__BIG_ENDIAN__ | ||
ifndef win | ||
- CFLAGS += -fpic | ||
endif | ||
@@ -433,7 +432,7 @@ ifdef DEBUG | ||
ifeq ($(machine_uname),sparc64) | ||
CFLAGS += -D__BIG_ENDIAN__ | ||
@@ -524,7 +523,7 @@ ifdef DEBUG | ||
else # RELEASE | ||
# -finline functions breaks the baja build badly. | ||
# This also means that -O3 won't work either. | ||
- CFLAGS := -O2 -fomit-frame-pointer -ffast-math -funroll-loops $(CFLAGS) | ||
+ CFLAGS := -fomit-frame-pointer -ffast-math -funroll-loops $(CFLAGS) | ||
endif | ||
|
||
-include targets.mk | ||
# -finline-functions (used to) break the baja build badly. | ||
# This also meant that -O3 wouldn't work either. | ||
- CFLAGS := -O3 -Wno-unused-result -ffast-math -funroll-loops $(CFLAGS) -DNDEBUG | ||
+ CFLAGS := -Wno-unused-result -ffast-math -funroll-loops $(CFLAGS) -DNDEBUG | ||
ifndef NO_LTO | ||
# Not Yet... this requires more care with library ordering. | ||
# CFLAGS += -flto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
@bin bin/syncterm | ||
@man man/man1/syncterm.1 | ||
share/applications/ | ||
share/applications/syncterm.desktop | ||
share/icons/ | ||
share/icons/hicolor/ | ||
share/icons/hicolor/64x64/ | ||
share/icons/hicolor/64x64/apps/ | ||
share/icons/hicolor/16x16/apps/syncterm.png | ||
share/icons/hicolor/22x22/apps/syncterm.png | ||
share/icons/hicolor/24x24/apps/syncterm.png | ||
share/icons/hicolor/256x256/apps/syncterm.png | ||
share/icons/hicolor/32x32/apps/syncterm.png | ||
share/icons/hicolor/36x36/apps/syncterm.png | ||
share/icons/hicolor/48x48/apps/syncterm.png | ||
share/icons/hicolor/64x64/apps/syncterm.png | ||
@tag update-desktop-database | ||
@tag gtk-update-icon-cache %D/share/icons/hicolor | ||
share/icons/hicolor/scalable/apps/syncterm-mini.svg | ||
share/icons/hicolor/scalable/apps/syncterm.svg |