forked from libusual/libusual
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some miscellaneous changes from my Meson investigation (libusual#49)
* Use ISO C __typeof__ instead of GNU C typeof I don't see any reason this has to be the GNU variant. * Factor out the pgutil_kwlookup gperf generation This makes it easier to share code with Meson builds. * Update pgutil_kwlookup.h
- Loading branch information
1 parent
f8d49e2
commit 204eae0
Showing
6 changed files
with
172 additions
and
175 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
grep '^PG_KEYWORD' "$1" \ | ||
| grep -v UNRESERVED \ | ||
| sed 's/.*"\(.*\)",.*, *\(.*\)[)].*/\1/' |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
|
||
gperf -m5 "$1" \ | ||
| sed '/^#line/d' |
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
Oops, something went wrong.