Skip to content

Commit d99c3ba

Browse files
author
casjay
committed
πŸ¦ˆπŸ πŸœβ— Initial Commit β—πŸœπŸ¦ˆπŸ 
0 parents  commit d99c3ba

8 files changed

+579
-0
lines changed

β€Ž.gitignore

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# gitignore created on 04/01/23 at 19:39
2+
# Disable reminder in prompt
3+
ignoredirmessage
4+
5+
# OS generated files
6+
### Linux ###
7+
*~
8+
9+
# temporary files which can be created if a process still has a handle open of a deleted file
10+
.fuse_hidden*
11+
12+
# KDE directory preferences
13+
.directory
14+
15+
# Linux trash folder which might appear on any partition or disk
16+
.Trash-*
17+
18+
# .nfs files are created when an open file is removed but is still being accessed
19+
.nfs*
20+
21+
### macOS ###
22+
# General
23+
.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
27+
# Thumbnails
28+
._*
29+
30+
# Files that might appear in the root of a volume
31+
.DocumentRevisions-V100
32+
.fseventsd
33+
.Spotlight-V100
34+
.TemporaryItems
35+
.Trashes
36+
.VolumeIcon.icns
37+
.com.apple.timemachine.donotpresent
38+
39+
# Directories potentially created on remote AFP share
40+
.AppleDB
41+
.AppleDesktop
42+
Network Trash Folder
43+
Temporary Items
44+
.apdisk
45+
46+
### macOS Patch ###
47+
# iCloud generated files
48+
*.icloud
49+
50+
### Windows ###
51+
# Windows thumbnail cache files
52+
Thumbs.db
53+
Thumbs.db:encryptable
54+
ehthumbs.db
55+
ehthumbs_vista.db
56+
57+
# Dump file
58+
*.stackdump
59+
60+
# Folder config file
61+
[Dd]esktop.ini
62+
63+
# Recycle Bin used on file shares
64+
$RECYCLE.BIN/
65+
66+
# Windows Installer files
67+
*.cab
68+
*.msi
69+
*.msix
70+
*.msm
71+
*.msp
72+
73+
# Windows shortcuts
74+
*.lnk
75+
76+
# ignore commit message
77+
**/.gitcommit
78+
79+
#ignore .failed
80+
**/.build_failed
81+
82+
# ignore .bak files
83+
**/*.bak
84+
85+
# ignore .no_push files
86+
**/.no_push
87+
88+
# ignore .no_git files
89+
**/.no_git
90+
91+
# ignore .installed files
92+
**/.installed
93+

β€ŽLICENSE.md

Whitespace-only changes.

β€ŽREADME.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## πŸ‘‹ Welcome to mod_wsgi πŸš€
2+
3+
mod_wsgi README
4+
5+
6+
## Author
7+
8+
πŸ€– casjay: [Github](https://github.com/casjay) πŸ€–

β€Žmod_wsgi-4.5.20-exports.patch

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- mod_wsgi-4.5.20/Makefile.in.exports
2+
+++ mod_wsgi-4.5.20/Makefile.in
3+
@@ -28,7 +28,7 @@
4+
all : src/server/mod_wsgi.la
5+
6+
src/server/mod_wsgi.la : $(SRCFILES)
7+
- $(APXS) -c $(CPPFLAGS) $(CFLAGS) $(SRCFILES) $(LDFLAGS) $(LDLIBS)
8+
+ $(APXS) -Wl,-export-symbols-regex -Wl,wsgi_module -c $(CPPFLAGS) $(CFLAGS) $(SRCFILES) $(LDFLAGS) $(LDLIBS)
9+
10+
$(DESTDIR)$(LIBEXECDIR) :
11+
mkdir -p $@

β€Žmod_wsgi-4.9.0.tar.gz

683 KB
Binary file not shown.

0 commit comments

Comments
Β (0)